body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    bottom: 0;
    padding: 0;
    margin: 0;
   
   h4{
    width: 50%;
    background: white;
   }
  }
  
  a {
    text-decoration: none;
    font-family: sans-serif;
    text-transform: lowercase;
    font-size: 1.5em;
    color: #222;
  }
  .container{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    transition: background 0.5s ease-in-out; 
    background: url('../../HTML-CSS-Projects/assets/minions.jpeg');
    background-position: center;
    background-size: cover;
    height: 100vh;

  }
  .menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    width: 100%;
    height: 60px;
    padding: 0 15px 15px;
    border-radius: 10px 10px 0px 0px;
    background:white;
    box-shadow: 0px 6px 18px 0px #9f9f9f;
    /* margin: 10px; */
  }
  .menu .nav-item {
    position: relative;
  }
  .icon{
    visibility: 0;
  }
  .menu .nav-item .tab-title {
    display: none;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 12px;
    background: #222;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    width: max-content;
    text-transform: capitalize;
  }
  .menu .nav-item .tab-title:before {
    content: "";
    position: absolute;
    border-color: #222 transparent transparent transparent;
    border-style: solid;
    border-width: 6px;
    width: 0px;
    height: 0px;
    bottom: -12px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .menu .nav-item:hover .tab-title {
    display: block;
  }
  .menu .checkbox {
    background-color: #fff;
    cursor: pointer;
    width: 0;
    height: 0;
    position: relative;
    z-index: 1;
  }
  .menu .checkbox:before {
    content: "";
    width: 80px;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    top: -30px;
    left: 0;
    position: absolute;
    border-radius: 100%;
    background-color: rgb(212, 231, 47);
    transition: all 0.2s linear;
    border: 4px solid #fff;
  }
  .menu .checkbox:after {
    content: "+";
    position: absolute;
    font-size: 4em;
    color: #fff;
    top: -30px;
    left: 0;
    transform: translate(-50%, -50%);
    transition: all 0.1s linear;
  }
  .menu .checkbox:checked + * {
    top: -100px;
    transform: rotate(0deg);
  }
  .menu .checkbox:checked + * .nav-item {
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    aspect-ratio: 1;
    position: absolute;
    left: 0;
    transform: translate(-50%, -15px);
  }
  .menu .checkbox:checked + * .nav-item:hover .tab-title {
    display: block !important;
  }
  .menu .checkbox:checked + * .nav-item > i {
    color: #fff;
    display: block;
    transition: all 0.5s linear;
  }
  .menu .checkbox:checked + * .nav-item:nth-child(1) {
    background-color: #f89034;
    top: 0px;
    left: -90px;
  }
  .menu .checkbox:checked + * .nav-item:nth-child(2) {
    background-color: #257ee5;
    left: 0;
    top: -40px;
  }
  .menu .checkbox:checked + * .nav-item:nth-child(3) {
    background-color: #631aee;
    top: 0px;
    left: 90px;
  }
  .menu .checkbox:checked:before {
    background-color: #fff;
    box-shadow: 0 0 10px #c7c7c7;
  }
  .menu .checkbox:checked:after {
    transform: translate(-50%, -50%) rotate(45deg);
    color: #6e6b83;
  }
  .menu .checkbox-list {
    position: absolute;
    top: 0;
    display: block;
    z-index: 0;
    transform: rotate(-90deg) translate(0, -50%);
    transition: all 0.1s linear;
  }
  .menu .checkbox-list .nav-item {
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    aspect-ratio: 1;
    position: absolute;
    transform: translate(15px, -50%);
    transition: all 0.2s linear;
  }
  .menu .checkbox-list .nav-item .tab-title {
    display: none;
  }
  .menu .checkbox-list .nav-item > i {
    color: #fff;
    display: block;
  }
  .menu .checkbox-list .nav-item:nth-child(1) {
    background-color: #ff8182;
    left: -72px;
  }
  .menu .checkbox-list .nav-item:nth-child(2) {
    background-color: #c641ff;
    left: -68px;
  }
  .menu .checkbox-list .nav-item:nth-child(3) {
    background-color: #631aee;
    left: -64px;
  }
  #stuart:target ~ .container {
    background: url('../../HTML-CSS-Projects/assets/stuart.jpg');
    background-position: center;
    background-size: cover;
}

#bob:target ~ .container {
    background: url('../../HTML-CSS-Projects/assets/bob.jpg');
    background-position: center;
    background-size: cover;
}

#kevin:target ~ .container {
    background: url('../../HTML-CSS-Projects/assets/kevin.jpg');
    background-position: center;
    background-size: cover;
}

